home *** CD-ROM | disk | FTP | other *** search
/ Komputer for Alle 2001 #9 / CD 9 (Black) - 2001.iso / K-CS.dcr / 00043_QuickSeek-animation.ls < prev    next >
Encoding:
Text File  |  2001-05-17  |  583 b   |  25 lines

  1. global ImageNum, HPos, VPos
  2.  
  3. on new me
  4.   puppetSound("Landelyd")
  5.   set ImageNum to 866
  6.   set HPos to the mouseH
  7.   set VPos to the mouseV
  8.   set the locH of sprite 94 to HPos
  9.   set the locV of sprite 94 to VPos
  10.   set the locH of sprite 99 to 780
  11.   set the visible of sprite 99 to 1
  12. end
  13.  
  14. on exitFrame
  15.   set ImageNum to ImageNum + 1
  16.   if ImageNum > 882 then
  17.     go(#next)
  18.   end if
  19.   set the locH of sprite 94 to HPos
  20.   set the locV of sprite 94 to VPos - ((64 - ((ImageNum - 872) * (ImageNum - 872))) * 3)
  21.   set the memberNum of sprite 94 to ImageNum
  22.   updateStage()
  23.   go(the frame)
  24. end
  25.